github.com/klauspost/compress/fse.cTable.stateTable (field)
12 uses
github.com/klauspost/compress/fse (current package)
compress.go#L89: c.stateTable = ct.stateTable
compress.go#L322: stateTable []uint16
compress.go#L337: if cap(s.ct.stateTable) < ctSize {
compress.go#L338: s.ct.stateTable = make([]uint16, ctSize)
compress.go#L340: s.ct.stateTable = s.ct.stateTable[:ctSize]
compress.go#L415: table := s.ct.stateTable
decompress.go#L185: if cap(s.ct.stateTable) < 256 {
decompress.go#L186: s.ct.stateTable = make([]uint16, 256)
decompress.go#L188: s.ct.stateTable = s.ct.stateTable[:256]
decompress.go#L196: symbolNext := s.ct.stateTable[:256]
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |